aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]/buttons.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-03-28 10:02:17 +0530
committerreal-zephex <[email protected]>2024-03-28 10:02:17 +0530
commitc447e8fde220e36bfe7b22e11a95d5d857d83ba5 (patch)
treebdf729dbc795cdb989b11ece13ff2d9a00b77e16 /src/app/manga/[title]/[id]/buttons.jsx
parentfixes: minor css fixes, added loading indicators, added error pages etc etc (diff)
downloaddramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.tar.xz
dramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.zip
fixes: css improvements and UI redesign for manga info page
Diffstat (limited to 'src/app/manga/[title]/[id]/buttons.jsx')
-rw-r--r--src/app/manga/[title]/[id]/buttons.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/buttons.jsx b/src/app/manga/[title]/[id]/buttons.jsx
index b4b8d4a..eec62b9 100644
--- a/src/app/manga/[title]/[id]/buttons.jsx
+++ b/src/app/manga/[title]/[id]/buttons.jsx
@@ -18,7 +18,10 @@ export default async function Buttons({ content: data }) {
}}
>
<button key={index}>
- {item.volumeNumber} - {item.chapterNumber}
+ <div>
+ <p>Chapter: {item.chapterNumber}</p>
+ <p>Volume: {item.volumeNumber}</p>
+ </div>
</button>
</Link>
);